home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / aie9009.zip / FRAMES.ZIP / SITE.KB < prev    next >
Text File  |  1990-07-08  |  3KB  |  79 lines

  1.  
  2.  
  3.  
  4. statement( [ description : score ,
  5.              value_type  : boolean ,
  6.              dont_ask : true ,
  7.              goal       : true   ] ).
  8.  
  9.  
  10.  rule([  hypothesis :
  11.              [ description : $C1: Setbacks OK$ ,
  12.                value  : yes  ]
  13.           and
  14.              [ description : $C2: Adequate number of parking stalls$,
  15.                value  : yes  ]
  16.           and
  17.              [ description : $C3: Handicapped parking next to sidewalk$,
  18.                value  : yes  ]
  19.           and
  20.              [ description : $C4: Handicapped pedestrians don't have to cross traffic$,
  21.                value  : yes  ]
  22.           and
  23.              [ description : $C5: Service drive to student union OK$,
  24.                value  : yes  ]
  25.           and
  26.              [ description : $C6: Parking access south of pedistiran bridge$,
  27.                value  : yes  ]
  28.           and
  29.              [ description : $C7: Student center and ampitheater view lake$,
  30.                value  : yes  ]
  31.           and
  32.              [ description : $C8: Buildings relate to mall and bridge$ ,
  33.                value  : yes  ]
  34.           and
  35.              [ description : $C9: Open space OK$,
  36.                value  : yes  ] ,
  37.          conclusion :  [ description : score ,
  38.                          value  : 4    ]
  39.         ]).
  40.  
  41.  rule([  hypothesis :
  42.              [ description : $C1: Setbacks OK$ ,
  43.                value  : no  ]
  44.           or
  45.              [ description : $C2: Adequate number of parking stalls$,
  46.                value  : no  ]
  47.           or
  48.              [ description : $C3: Horicapped parking next to sidewalk$,
  49.                value  : no  ]
  50.           or
  51.              [ description : $C4: Horicapped pedestrians don't have to cross traffic$,
  52.                value  : no  ]
  53.           or
  54.              [ description : $C5: Service drive to student union OK$,
  55.                value  : no  ]
  56.           or
  57.              [ description : $C6: Parking access south of pedistiran bridge$,
  58.                value  : no  ]
  59.           or
  60.              [ description : $C7: Student center or ampitheater view lake$,
  61.                value  : no  ]
  62.           or
  63.              [ description : $C8: Buildings relate to mall or bridge$ ,
  64.                value  : no  ]
  65.           or
  66.              [ description : $C9: Open space OK$,
  67.                value  : no  ] ,
  68.          conclusion :  [ description : score ,
  69.                          value  : 1    ]
  70.         ]).
  71.  
  72.  rule([  hypothesis : true,
  73.          conclusion :  [ description : score ,
  74.                          value  : unknown   ]
  75.         ]).
  76.  
  77.  
  78. %%%%%%%%%%%%%%%%%% eof %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  79.